Notes/tsconfig.build.json

25 lines
549 B
JSON
Raw Normal View History

{
"compilerOptions": {
"module": "NodeNext",
"declaration": false,
"sourceMap": true,
"outDir": "./build",
"strict": true,
"noImplicitAny": true,
"resolveJsonModule": true,
"allowJs": true,
"lib": ["ES2023"],
"downlevelIteration": true,
"skipLibCheck": true,
"esModuleInterop": true,
"verbatimModuleSyntax": true
},
"include": ["./src/**/*.ts", "./src/**/*.js", "./*.ts"],
"exclude": [
"./**/*.spec.ts",
"./src/public/**/*",
"./*.config.ts",
],
"files": ["src/types.d.ts"]
}