22 lines
603 B
JSON
22 lines
603 B
JSON
{
|
|||
|
|
"compilerOptions": {
|
||
|
|
"target": "ES2020",
|
||
|
|
"useDefineForClassFields": true,
|
||
|
|
"module": "ESNext",
|
||
|
|
"lib": ["ES2020", "DOM", "DOM.Iterable"],
|
||
|
|
"skipLibCheck": true,
|
||
|
|
"moduleResolution": "node",
|
||
|
|
"resolveJsonModule": true,
|
||
|
|
"allowSyntheticDefaultImports": true,
|
||
|
|
"declaration": true,
|
||
|
|
"emitDeclarationOnly": true,
|
||
|
|
"outDir": "./dist",
|
||
|
|
"strict": true,
|
||
|
|
"noUnusedLocals": false,
|
||
|
|
"noUnusedParameters": false,
|
||
|
|
"experimentalDecorators": true,
|
||
|
|
"emitDecoratorMetadata": true
|
||
|
|
},
|
||
|
|
"include": ["src/types.ts", "src/simapi.core.ts", "src/simapi.pinia.ts"]
|
||
|
|
}
|