2020-01-26 22:16:16 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2020-04-12 14:25:42 +00:00
|
|
|
"target": "esnext",
|
|
|
|
"module": "esnext",
|
|
|
|
// "strict": true,
|
|
|
|
"jsx": "preserve",
|
|
|
|
"importHelpers": true,
|
2020-01-26 22:16:16 +00:00
|
|
|
"moduleResolution": "node",
|
2020-04-12 14:25:42 +00:00
|
|
|
"experimentalDecorators": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
2020-01-26 22:16:16 +00:00
|
|
|
"sourceMap": true,
|
2020-04-12 14:25:42 +00:00
|
|
|
"baseUrl": ".",
|
|
|
|
"types": [
|
|
|
|
"@types/node"
|
|
|
|
],
|
|
|
|
"paths": {
|
|
|
|
"@/*": [
|
|
|
|
"src/*"
|
|
|
|
]
|
|
|
|
},
|
2020-02-02 22:42:18 +00:00
|
|
|
"lib": [
|
2020-04-12 14:25:42 +00:00
|
|
|
"esnext",
|
2020-02-02 22:42:18 +00:00
|
|
|
"dom",
|
2020-04-12 14:25:42 +00:00
|
|
|
"dom.iterable",
|
|
|
|
"scripthost"
|
|
|
|
]
|
2020-01-26 22:16:16 +00:00
|
|
|
},
|
|
|
|
"include": [
|
2020-02-02 22:42:18 +00:00
|
|
|
"resources/scripts/main.ts"
|
2020-01-26 22:16:16 +00:00
|
|
|
],
|
|
|
|
"exclude": [
|
|
|
|
"node_modules",
|
|
|
|
"**/*.spec.ts"
|
|
|
|
]
|
|
|
|
}
|