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