mirror of https://github.com/nocodb/nocodb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
693 B
30 lines
693 B
5 months ago
|
{
|
||
|
"compilerOptions": {
|
||
|
// Enable latest features
|
||
|
"lib": ["ESNext", "DOM"],
|
||
|
"target": "ESNext",
|
||
|
"module": "ESNext",
|
||
|
"moduleDetection": "force",
|
||
|
"jsx": "preserve",
|
||
|
"jsxImportSource": "vue",
|
||
|
"allowJs": true,
|
||
|
|
||
|
// Bundler mode
|
||
|
"moduleResolution": "bundler",
|
||
|
"allowImportingTsExtensions": true,
|
||
|
"verbatimModuleSyntax": true,
|
||
|
"noEmit": true,
|
||
|
"esModuleInterop": true,
|
||
|
|
||
|
// Best practices
|
||
|
"strict": true,
|
||
|
"skipLibCheck": true,
|
||
|
"noFallthroughCasesInSwitch": true,
|
||
|
|
||
|
// Some stricter flags (disabled by default)
|
||
|
"noUnusedLocals": false,
|
||
|
"noUnusedParameters": false,
|
||
|
"noPropertyAccessFromIndexSignature": false
|
||
|
}
|
||
|
}
|