Notes/tsconfig.webpack.json

24 lines
420 B
JSON
Raw Normal View History

{
"compilerOptions": {
"module": "NodeNext",
"declaration": false,
"sourceMap": true,
"outDir": "./build",
"strict": true,
"noImplicitAny": true,
"resolveJsonModule": true,
"lib": [
"ES2022"
],
"downlevelIteration": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowJs": true
},
"include": [
2024-12-14 10:37:01 +02:00
"./src/public/app/**/*",
],
"files": [
2024-12-14 10:37:01 +02:00
"./src/public/app/types.d.ts"
]
}