forked from ShelterTechSF/askdarcel-web
-
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) · 851 Bytes
/
tsconfig.json
File metadata and controls
26 lines (26 loc) · 851 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": {
"baseUrl": "app",
"lib": ["dom", "dom.iterable", "es2021"],
"target": "es2015",
"allowJs": true, // Allow a mix of JS and TS until we fully migrate to TS.
"jsx": "react",
"noEmit": true, // No need to emit .d.ts files, since we're not publishing a package.
"strict": true,
"moduleResolution": "node",
"esModuleInterop": true, // Allows us to use default imports with CommonJS modules (which some third-party packages use)
"skipLibCheck": true // Don't type check .d.ts files, which mostly come from third party libraries.
},
"paths": {
"*": ["app/index.d.ts"]
},
"files": ["declaration.d.ts", "jest.config.ts", "setupTests.ts"],
"include": [
"app",
".eslintrc.js",
"prettier.config.js",
"webpack.config.js",
"test"
],
"exclude": ["node_modules"]
}