21 lines
471 B
JSON
21 lines
471 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": "web/js",
|
|
"rootDir": "ts",
|
|
"sourceMap":true,
|
|
"incremental": true,
|
|
"resolveJsonModule": true
|
|
},
|
|
"include": ["ts/*.ts"]
|
|
}
|