22 lines
520 B
JSON
22 lines
520 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"module": "NodeNext",
|
|
"moduleResolution": "NodeNext",
|
|
"rootDir": ".",
|
|
"outDir": "./dist",
|
|
"strict": true,
|
|
// Style
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"allowUnusedLabels": false,
|
|
"allowUnreachableCode": false,
|
|
// JSX
|
|
"jsx": "react-jsx",
|
|
"jsxImportSource": "@kitajs/html",
|
|
"plugins": [{ "name": "@kitajs/ts-html-plugin" }]
|
|
}
|
|
}
|