Notes/tsconfig.webpack.json

19 lines
423 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": ["ES2022"],
"downlevelIteration": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowJs": true
},
"include": ["./src/public/app/**/*"],
"files": ["./src/public/app/types.d.ts"]
}