26 lines
534 B
JSON
26 lines
534 B
JSON
{
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
"compilerOptions": {
|
|
"allowJs": true,
|
|
"checkJs": true,
|
|
"noEmit": true,
|
|
"target": "ES2022",
|
|
"module": "ES2022",
|
|
"moduleResolution": "Bundler",
|
|
"types": [],
|
|
"lib": ["ES2022", "DOM", "DOM.Iterable"],
|
|
"noLib": false,
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"skipDefaultLibCheck": true,
|
|
"incremental": true
|
|
},
|
|
"compileOnSave": false,
|
|
"exclude": [
|
|
"node_modules",
|
|
"built",
|
|
"coverage",
|
|
"**/*.ts"
|
|
]
|
|
}
|