24 lines
542 B
JSON
24 lines
542 B
JSON
{
|
|
"compileOnSave": true,
|
|
"compilerOptions": {
|
|
"experimentalDecorators": true,
|
|
"outDir": "./dist",
|
|
"allowJs": true,
|
|
"module": "es6",
|
|
"target": "es5",
|
|
"moduleResolution": "node",
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"incremental": true,
|
|
"sourceMap": true,
|
|
"alwaysStrict": true,
|
|
},
|
|
"include": [
|
|
"./src/**/*.ts"
|
|
],
|
|
"exclude": [
|
|
"./tests/",
|
|
"./node_modules/",
|
|
"./dist/"
|
|
]
|
|
} |