mirror of
https://github.com/zenstackhq/zenstack
synced 2026-05-24 10:08:55 +00:00
22 lines
612 B
JSON
22 lines
612 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES6",
|
|
"module": "CommonJS",
|
|
"lib": ["ESNext", "DOM"],
|
|
"sourceMap": true,
|
|
"outDir": "dist",
|
|
"strict": true,
|
|
"noUnusedLocals": true,
|
|
"noImplicitReturns": true,
|
|
"moduleResolution": "node",
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"declaration": true,
|
|
"resolveJsonModule": true,
|
|
"strictPropertyInitialization": false,
|
|
"paths": {}
|
|
},
|
|
"include": ["src/**/*.ts"],
|
|
"exclude": ["src/runtime"]
|
|
}
|