grungnet/backend/tsconfig.json
2023-01-16 12:02:32 +11:00

17 lines
441 B
JSON

{
"compilerOptions": {
"outDir": "./build",
"allowJs": true,
"allowSyntheticDefaultImports": true,
"target": "es6",
"noFallthroughCasesInSwitch": true,
"noEmitOnError": true,
"pretty": true,
"moduleResolution": "node",
"strict": true,
"sourceMap": true,
"skipLibCheck": true
},
"include": ["./src/**/*"],
"exclude": ["node_modules/**/*", "./build/**/*"]
}