misc_pterodactyl-panel/tsconfig.json

48 lines
948 B
JSON
Raw Normal View History

2018-12-16 22:30:21 +00:00
{
"compilerOptions": {
"target": "es2015",
"module": "es2020",
"jsx": "react",
2018-12-16 22:30:21 +00:00
"moduleResolution": "node",
"lib": [
"es2015",
"dom"
],
2021-05-08 17:37:18 +00:00
"strict": true,
"noEmit": true,
"sourceMap": true,
"noImplicitReturns": true,
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"baseUrl": ".",
"importsNotUsedAsValues": "preserve",
2019-02-03 02:49:51 +00:00
"paths": {
"@/*": [
"./resources/scripts/*"
],
"@definitions/*": [
"./resources/scripts/api/definitions/*"
],
"@feature/*": [
"./resources/scripts/components/server/features/*"
2019-02-03 02:49:51 +00:00
]
},
"plugins": [
{
"name": "typescript-plugin-tw-template"
}
],
"typeRoots": [
"node_modules/@types"
]
2018-12-16 22:30:21 +00:00
},
"include": [
"./resources/scripts/**/*"
],
"exclude": [
"/node_modules/"
2018-12-16 22:30:21 +00:00
]
}