29 строки
737 B
JSON
29 строки
737 B
JSON
{
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
"compilerOptions": {
|
|
"declaration": true,
|
|
"strict": true,
|
|
"module": "commonjs",
|
|
"target": "es2021",
|
|
"outDir": "out",
|
|
"lib": ["ES2021"],
|
|
"moduleResolution": "node",
|
|
"sourceMap": true,
|
|
"rootDir": "src",
|
|
"skipLibCheck": true,
|
|
"strictNullChecks": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"preserveWatchOutput": true,
|
|
"newLine": "lf",
|
|
"noImplicitReturns": true,
|
|
"experimentalDecorators": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"esModuleInterop": true,
|
|
"resolveJsonModule": true,
|
|
"noEmit": true
|
|
},
|
|
"include": ["src/**/*.ts"],
|
|
"exclude": ["node_modules", "test", "**/view"]
|
|
}
|