18 lines
468 B
JSON
18 lines
468 B
JSON
{
|
|
"extends": "@konobangu/typescript-config/base.json",
|
|
"compilerOptions": {
|
|
"lib": ["DOM", "ES2024", "DOM.AsyncIterable", "DOM.Iterable"],
|
|
"jsx": "react-jsx",
|
|
"noEmit": true,
|
|
"module": "ESNext",
|
|
"moduleResolution": "Bundler",
|
|
"allowImportingTsExtensions": true,
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"strict": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true
|
|
},
|
|
"include": ["src"]
|
|
}
|