forked from nick-keller/react-datasheet-grid
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
26 lines (26 loc) · 695 Bytes
/
Copy pathtsconfig.json
File metadata and controls
26 lines (26 loc) · 695 Bytes
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
{
"compilerOptions": {
"incremental": true,
"target": "ES2015",
"module": "ES2020",
"allowJs": false,
"jsx": "react",
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"rootDir": "src",
"lib": ["DOM", "ESNext"],
"outDir": "dist",
"downlevelIteration": true,
"isolatedModules": true,
"strict": true,
"alwaysStrict": true,
"noImplicitReturns": true,
"moduleResolution": "node",
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true
},
"exclude": ["node_modules", "dist", "example", "src/**/*.test.ts", "src/**/*.test.tsx"],
"include": ["src/**/*"]
}