mirror of
https://github.com/hcengineering/platform.git
synced 2026-08-17 18:05:42 +02:00
19 lines
502 B
JSON
19 lines
502 B
JSON
{
|
|
"compilerOptions": {
|
|
"outDir": "dist",
|
|
"noImplicitAny": true,
|
|
"module": "esnext",
|
|
"target": "es2021",
|
|
"allowJs": true,
|
|
"declaration": true,
|
|
"strictNullChecks": true,
|
|
"sourceMap": true,
|
|
"skipLibCheck": true,
|
|
"moduleResolution": "node",
|
|
"allowSyntheticDefaultImports": true,
|
|
"lib": ["es2023", "dom", "ES2021.String", "ESNext.Array"]
|
|
},
|
|
"include": ["src/**/*", "declarations.d.ts"],
|
|
"exclude": ["node_modules", "lib", "dist", "types", "bundle"]
|
|
}
|