generated from secundant/product-template
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathtsconfig.base.json
executable file
·49 lines (49 loc) · 1.67 KB
/
tsconfig.base.json
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
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"compileOnSave": false,
"compilerOptions": {
"jsx": "preserve",
"lib": ["ESNext"],
"target": "ES2022",
"module": "ESNext",
"moduleResolution": "Bundler",
"resolveJsonModule": true,
"rootDir": ".",
"baseUrl": ".",
"paths": {
"@neodx/codegen": ["libs/codegen/src/index.ts"],
"@neodx/colors": ["libs/colors/src/index.ts"],
"@neodx/fex": ["libs/fex/src/index.ts"],
"@neodx/figma": ["libs/figma/src/index.ts"],
"@neodx/fs": ["libs/fs/src/index.ts"],
"@neodx/glob": ["libs/glob/src/index.ts"],
"@neodx/log": ["libs/log/src/index.ts"],
"@neodx/log/*": ["libs/log/src/*.ts", "libs/log/src/*/index.ts"],
"@neodx/pkg-misc": ["libs/pkg-misc/src/index.ts"],
"@neodx/std": ["libs/std/src/index.ts"],
"@neodx/svg": ["libs/svg/src/index.ts"],
"@neodx/svg/*": ["libs/svg/src/*.ts", "libs/svg/src/*/index.ts"],
"@neodx/vfs": ["libs/vfs/src/index.ts"],
"@neodx/vfs/*": ["libs/vfs/src/testing.ts"],
"@neodx/vite-plugin-library": ["libs/vite-plugin-library/src/index.ts"]
},
"strict": true,
"noUnusedLocals": true,
"noImplicitReturns": true,
"noUncheckedIndexedAccess": true,
"noFallthroughCasesInSwitch": true,
"suppressExcessPropertyErrors": false,
"suppressImplicitAnyIndexErrors": false,
"forceConsistentCasingInFileNames": true,
"allowImportingTsExtensions": true,
"allowUnreachableCode": false,
"noEmit": true,
"allowJs": false,
"skipLibCheck": true,
"verbatimModuleSyntax": true,
"importHelpers": false,
"sourceMap": false,
"noErrorTruncation": false,
"pretty": true
},
"exclude": ["node_modules", "**/dist"]
}