31 lines
587 B
JSON
31 lines
587 B
JSON
{
|
|
"compilerOptions": {
|
|
"allowSyntheticDefaultImports": true,
|
|
"allowUnreachableCode": false,
|
|
"declaration": false,
|
|
"experimentalDecorators": true,
|
|
"lib": [
|
|
"dom",
|
|
"es2022"
|
|
],
|
|
"moduleResolution": "bundler",
|
|
"module": "esnext",
|
|
"target": "es2022",
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"rootDir": "./",
|
|
"jsx": "react",
|
|
"jsxFactory": "h",
|
|
"jsxFragmentFactory": "h.Fragment",
|
|
"types": [
|
|
"@stencil/vitest/globals"
|
|
]
|
|
},
|
|
"include": [
|
|
"src"
|
|
],
|
|
"exclude": [
|
|
"node_modules"
|
|
]
|
|
}
|