-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathtsconfig.json
More file actions
35 lines (35 loc) · 1.04 KB
/
Copy pathtsconfig.json
File metadata and controls
35 lines (35 loc) · 1.04 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
{
"compilerOptions": {
"rootDir": ".",
"target": "ES2016",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"lib": ["ES2016", "DOM"],
"sourceMap": true,
"sourceRoot": "../",
"mapRoot": "",
"inlineSourceMap": false,
"inlineSources": true,
"jsx": "react-jsx",
"strict": true,
"skipLibCheck": true,
"declaration": true,
"esModuleInterop": true,
"isolatedModules": true,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"noImplicitReturns": true,
"noUnusedLocals": true,
"noUnusedParameters": false,
"noImplicitAny": true,
"resolveJsonModule": true,
"allowJs": false,
"paths": {
"@enum-plus": ["./src/index.ts"],
"@enum-plus/*": ["./src/*"],
"enum-plus/extension": ["./src/extension.d.ts"]
}
},
"include": ["src", "scripts", "test", ".storybook/**/*.ts*", ".storybook/**/*.mdx", "*.ts", ".*.ts"],
"exclude": ["node_modules", "packages", "es", "es-legacy", "lib", "tslib", "tses", "types-legacy"]
}