shellphone.app/api/tsconfig.json

30 lines
519 B
JSON
Raw Normal View History

2021-06-01 21:13:51 +00:00
{
"compilerOptions": {
"target": "ES2017",
"module": "commonjs",
"lib": ["es6"],
"sourceMap": true,
"outDir": "dist",
"strict": true,
"strictPropertyInitialization": false,
"moduleResolution": "node",
"baseUrl": ".",
"paths": {
"*": [
"node_modules/*"
]
},
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"skipLibCheck": true
},
"include": [
"src/**/*"
],
"exclude": [
"src/__tests__"
]
}