seepur/tsconfig.json

37 lines
637 B
JSON
Raw Permalink Normal View History

{
"compilerOptions": {
2020-04-12 14:25:42 +00:00
"target": "esnext",
"module": "esnext",
// "strict": true,
"jsx": "preserve",
"importHelpers": true,
"moduleResolution": "node",
2020-04-12 14:25:42 +00:00
"experimentalDecorators": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"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"
]
},
"include": [
2020-02-02 22:42:18 +00:00
"resources/scripts/main.ts"
],
"exclude": [
"node_modules",
"**/*.spec.ts"
]
}