Files
climate-server/server/tsconfig.json
2021-03-14 18:42:25 +01:00

23 lines
511 B
JSON

{
"compilerOptions": {
"outDir": "../app-dist/server",
"noImplicitAny": true,
"module": "commonjs",
"target": "ES6",
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"moduleResolution": "node",
"resolveJsonModule": true,
"experimentalDecorators": true
},
"include": ["./src/**/*"],
"lib": [
"dom",
"dom.iterable",
"esnext"
]
}