20 lines
458 B
JSON
20 lines
458 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2018",
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"noEmitOnError": true,
|
|
"lib": ["es2017", "dom"],
|
|
"strict": true,
|
|
"esModuleInterop": false,
|
|
"allowSyntheticDefaultImports": true,
|
|
"experimentalDecorators": true,
|
|
"importHelpers": true,
|
|
"outDir": "out-tsc",
|
|
"sourceMap": true,
|
|
"inlineSources": true,
|
|
"rootDir": "./"
|
|
},
|
|
"include": ["**/*.ts", "src/app.ts"]
|
|
}
|