-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
36 lines (31 loc) · 1.08 KB
/
tsconfig.json
File metadata and controls
36 lines (31 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"compilerOptions": {
"rootDir": "./",
"noEmit": true,
"target": "ESNext",
"module": "NodeNext",
"lib": ["ESNext", "DOM", "DOM.Iterable"],
"jsx": "react-jsx",
"strict": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"skipLibCheck": true,
"isolatedModules": true,
"noUncheckedSideEffectImports": true,
"noUnusedLocals": true,
"noUncheckedIndexedAccess": true,
"noImplicitOverride": true,
"allowImportingTsExtensions": true,
// so that the compiled code has the correct paths (`import './a.ts'` >> `import './a.js'`)
"rewriteRelativeImportExtensions": true,
// to make code comply with the "no-slow-types" rule from JSR
"isolatedDeclarations": true,
// because "isolatedDeclarations" does not work without it
"declaration": true,
// import types only with type keyword
"verbatimModuleSyntax": true,
// no enums, namespaces, parameter properties, etc
"erasableSyntaxOnly": true
},
"exclude": ["node_modules", "public/typings", "tests-pkg", "tests-e2e", "docs", "dist"]
}