mirror of
https://github.com/jackyzha0/quartz.git
synced 2025-12-24 13:24:05 -06:00
30 lines
738 B
JSON
30 lines
738 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"esModuleInterop": true,
|
|
"resolveJsonModule": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"declaration": true,
|
|
"declarationDir": "dist",
|
|
"declarationMap": true,
|
|
"target": "ES2017",
|
|
"noImplicitAny": true,
|
|
"noUnusedLocals": false,
|
|
"strictNullChecks": true,
|
|
"moduleResolution": "node",
|
|
"skipLibCheck": true,
|
|
"sourceMap": false,
|
|
"noEmit": false,
|
|
"baseUrl": "src",
|
|
"paths": {
|
|
"*": ["node_modules/*", "src/types/*"],
|
|
"src/*": ["*"]
|
|
},
|
|
"typeRoots": ["./node_modules/@types", "./@types"],
|
|
"outDir": "dist"
|
|
},
|
|
"include": ["src/*"]
|
|
}
|