2018-12-16 23:30:21 +01:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2020-07-03 22:55:33 +02:00
|
|
|
"target": "es2015",
|
2020-07-05 00:40:41 +02:00
|
|
|
"module": "es2020",
|
2019-06-10 02:29:10 +02:00
|
|
|
"jsx": "react",
|
2018-12-16 23:30:21 +01:00
|
|
|
"strict": true,
|
2020-07-03 22:55:33 +02:00
|
|
|
"noEmit": true,
|
2018-12-30 04:24:09 +01:00
|
|
|
"noImplicitReturns": true,
|
2018-12-16 23:30:21 +01:00
|
|
|
"moduleResolution": "node",
|
2019-06-23 01:45:51 +02:00
|
|
|
"allowSyntheticDefaultImports": true,
|
2020-07-03 22:55:33 +02:00
|
|
|
"esModuleInterop": true,
|
2019-06-10 02:29:10 +02:00
|
|
|
"sourceMap": true,
|
2019-02-03 03:49:51 +01:00
|
|
|
"baseUrl": ".",
|
2020-11-03 05:52:41 +01:00
|
|
|
"lib": [
|
|
|
|
"es2015",
|
|
|
|
"dom"
|
|
|
|
],
|
2020-07-05 03:19:46 +02:00
|
|
|
"importsNotUsedAsValues": "preserve",
|
2019-02-03 03:49:51 +01:00
|
|
|
"paths": {
|
|
|
|
"@/*": [
|
2019-06-10 02:29:10 +02:00
|
|
|
"./resources/scripts/*"
|
2020-11-03 05:52:41 +01:00
|
|
|
],
|
|
|
|
"@feature/*": [
|
|
|
|
"./resources/scripts/components/server/features/*"
|
2019-02-03 03:49:51 +01:00
|
|
|
]
|
2020-07-03 22:55:33 +02:00
|
|
|
},
|
|
|
|
"plugins": [
|
|
|
|
{
|
|
|
|
"name": "typescript-plugin-tw-template"
|
|
|
|
}
|
|
|
|
],
|
2020-11-03 05:52:41 +01:00
|
|
|
"typeRoots": [
|
|
|
|
"node_modules/@types"
|
|
|
|
]
|
2018-12-16 23:30:21 +01:00
|
|
|
},
|
|
|
|
"include": [
|
2019-06-10 02:29:10 +02:00
|
|
|
"./resources/scripts/**/*"
|
2020-07-04 18:13:41 +02:00
|
|
|
],
|
|
|
|
"exclude": [
|
|
|
|
"/node_modules/"
|
2018-12-16 23:30:21 +01:00
|
|
|
]
|
|
|
|
}
|