Notes/tsconfig.webpack.json

23 lines
494 B
JSON
Raw Normal View History

{
2025-01-09 18:07:02 +02:00
"compilerOptions": {
"module": "NodeNext",
"declaration": false,
"sourceMap": true,
"outDir": "./build",
"strict": true,
"noImplicitAny": true,
"resolveJsonModule": true,
"lib": ["ES2023"],
2025-01-09 18:07:02 +02:00
"downlevelIteration": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowJs": true
},
"include": ["./src/public/app/**/*"],
2025-01-09 20:20:06 +02:00
"files": [
"./src/public/app/types.d.ts",
"./src/public/app/types-lib.d.ts",
"./src/types.d.ts"
2025-01-09 20:20:06 +02:00
]
2025-01-09 18:07:02 +02:00
}