mirror of
https://github.com/quartz-community/types.git
synced 2026-07-22 02:50:26 +00:00
19 lines
431 B
JSON
19 lines
431 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "NodeNext",
|
|
"lib": ["ES2022", "DOM"],
|
|
"moduleResolution": "NodeNext",
|
|
"rootDir": "./src",
|
|
"outDir": "./dist",
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"sourceMap": true,
|
|
"noEmit": true,
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": ["dist", "node_modules"]
|
|
}
|