mirror of
https://github.com/thdngan/permanent-ink.git
synced 2026-07-22 06:05:44 +00:00
37 lines
783 B
JSON
37 lines
783 B
JSON
{
|
|
"compilerOptions": {
|
|
// Enable latest features
|
|
"lib": ["ESNext", "DOM"],
|
|
"moduleDetection": "force",
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
"jsx": "react-jsx",
|
|
"allowJs": true,
|
|
|
|
// Bundler mode
|
|
"moduleResolution": "bundler",
|
|
"allowImportingTsExtensions": true,
|
|
"verbatimModuleSyntax": true,
|
|
"importHelpers": true,
|
|
"noEmit": true,
|
|
"isolatedModules": true,
|
|
"inlineSourceMap": true,
|
|
"inlineSources": true,
|
|
|
|
// Best practices
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
// Some stricter flags
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noPropertyAccessFromIndexSignature": true,
|
|
|
|
"paths": {
|
|
"@": ["./src/main.ts"],
|
|
"@/*": ["./src/*"]
|
|
}
|
|
},
|
|
"include": ["./src", "scripts/build.ts"]
|
|
}
|