mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-06 16:03:52 +00:00
34 lines
807 B
JSON
34 lines
807 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"module": "esnext",
|
|
"moduleResolution": "node10",
|
|
"resolveJsonModule": false,
|
|
"isolatedModules": false,
|
|
"skipLibCheck": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"strict": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noImplicitAny": true,
|
|
"noImplicitReturns": true,
|
|
"allowUnreachableCode": false,
|
|
"allowUnusedLabels": false,
|
|
"noImplicitThis": true,
|
|
"strictNullChecks": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"removeComments": true,
|
|
"preserveConstEnums": true,
|
|
"allowJs": true,
|
|
"declaration": true,
|
|
"outDir": "dist",
|
|
},
|
|
"include": [
|
|
"src/index.ts",
|
|
],
|
|
"exclude": [
|
|
"node_modules", "dist"
|
|
]
|
|
}
|