61 lines
1.5 KiB
JSON
61 lines
1.5 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"outDir": "lib",
|
|
"module": "ESNext",
|
|
"target": "ESNext",
|
|
"declaration": true,
|
|
"inlineSourceMap": true,
|
|
"noEmit": true,
|
|
"noImplicitUseStrict": false,
|
|
"preserveConstEnums": true,
|
|
"removeComments": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"isolatedModules": false,
|
|
"alwaysStrict": true,
|
|
"noImplicitAny": false,
|
|
"noImplicitThis": false,
|
|
"strictBindCallApply": true,
|
|
"strictFunctionTypes": true,
|
|
"strictNullChecks": true,
|
|
"strictPropertyInitialization": true,
|
|
"allowUnreachableCode": false,
|
|
"allowUnusedLabels": false,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noImplicitReturns": true,
|
|
"noUnusedLocals": false,
|
|
"noUnusedParameters": false,
|
|
"noFallthroughCasesInSwitch": false,
|
|
"skipLibCheck": true,
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"#*": [
|
|
"src/*"
|
|
],
|
|
"*": [
|
|
"*",
|
|
"types/*"
|
|
]
|
|
},
|
|
"lib": [
|
|
"ES2020",
|
|
"ES2021",
|
|
"dom"
|
|
]
|
|
},
|
|
"include": [
|
|
"**/*.json",
|
|
"**/*.ts",
|
|
"**/*.cts",
|
|
"**/*.mts"
|
|
],
|
|
"exclude": [
|
|
"**/node_modules",
|
|
"lib"
|
|
]
|
|
}
|