mirror of
https://github.com/jlengrand/simple-food-diary.git
synced 2026-03-10 00:31:21 +00:00
22 lines
491 B
JSON
22 lines
491 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": "./",
|
|
"incremental": true
|
|
},
|
|
"include": ["**/*.ts"],
|
|
"exclude": ["api"]
|
|
}
|