2024-02-16 20:54:54 +02:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2024-12-14 09:56:04 +02:00
|
|
|
"module": "NodeNext",
|
|
|
|
"declaration": false,
|
|
|
|
"sourceMap": true,
|
|
|
|
"outDir": "./build",
|
|
|
|
"strict": true,
|
|
|
|
"noImplicitAny": true,
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"lib": [
|
|
|
|
"ES2022"
|
|
|
|
],
|
|
|
|
"downlevelIteration": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"esModuleInterop": true,
|
2024-02-16 20:54:54 +02:00
|
|
|
},
|
|
|
|
"include": [
|
2024-12-14 09:56:04 +02:00
|
|
|
"./src/**/*.js",
|
|
|
|
"./src/**/*.ts",
|
|
|
|
"./*.ts",
|
|
|
|
"./spec/**/*.ts",
|
|
|
|
"./spec-es6/**/*.ts"
|
|
|
|
],
|
|
|
|
"exclude": [
|
|
|
|
"./src/public/**/*",
|
|
|
|
"./node_modules/**/*"
|
2024-02-16 20:54:54 +02:00
|
|
|
],
|
2024-02-17 12:33:20 +02:00
|
|
|
"files": [
|
2024-12-14 09:56:04 +02:00
|
|
|
"src/types.d.ts"
|
2024-02-17 12:33:20 +02:00
|
|
|
]
|
2024-12-14 09:56:04 +02:00
|
|
|
}
|