@kikiutils/tsconfigs
Version:
Preconfigured TypeScript config files for stricter type checking and multi-environment support.
15 lines (14 loc) • 336 B
JSON
{
"$schema": "https://json.schemastore.org/tsconfig.json",
"extends": "./tsconfig.base.json",
"compilerOptions": {
"target": "ESNext",
"jsx": "react-jsx",
"lib": ["ESNext"],
"moduleDetection": "force",
"module": "Preserve",
"allowImportingTsExtensions": true,
"allowJs": true,
"noEmit": true
}
}