nm3clol-express-app/tsconfig.build.json

29 lines
991 B
JSON

{
"extends": "./tsconfig.json",
"compilerOptions": {
"outDir": "./",
"allowJs": true,
"target": "ESNext",
"sourceMap": false,
"declaration": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"module": "NodeNext",
"moduleResolution": "NodeNext",
"isolatedModules": false,
"suppressImplicitAnyIndexErrors": false,
"noImplicitAny": true,
"strictNullChecks": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"allowSyntheticDefaultImports": true,
"importHelpers": true,
"noEmit": false,
"esModuleInterop": true,
"resolveJsonModule": true,
"strict": true,
"lib": ["es7", "dom", "ESNext.AsyncIterable", "ES2021.String"]
},
"include": ["../**/*.ts", "../**/*.tsx", "../**/*.mts", "../**/*.js", "../**/*.jsx", "../**/*.mjs"],
"exclude": ["../gulpfile.mts", "../dist/**/*"]
}