smartmail/tsconfig.json

28 lines
549 B
JSON
Raw Normal View History

2022-08-07 11:38:07 +02:00
{
"compilerOptions": {
"experimentalDecorators": true,
"useDefineForClassFields": false,
"target": "ES2022",
2024-04-01 21:36:24 +02:00
"module": "NodeNext",
"moduleResolution": "NodeNext",
2023-06-13 23:23:11 +02:00
"esModuleInterop": true,
"verbatimModuleSyntax": true,
"declaration": true,
"sourceMap": true,
"outDir": "./dist_ts",
"rootDir": "./ts",
"strict": false,
"lib": ["ES2022", "DOM"],
"skipLibCheck": false
2024-04-01 21:36:24 +02:00
},
"include": [
"ts/**/*"
],
2024-04-01 21:36:24 +02:00
"exclude": [
"node_modules",
"dist",
"dist_ts",
"**/*.spec.ts"
2024-04-01 21:36:24 +02:00
]
2022-08-07 11:38:07 +02:00
}