forked from bldrs-ai/Share
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
33 lines (33 loc) · 798 Bytes
/
tsconfig.json
File metadata and controls
33 lines (33 loc) · 798 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
27
28
29
30
31
32
33
{
"extends": "@tsconfig/recommended/tsconfig.json",
"include": [
"src/**/*.ts",
"src/utils/assert.js",
"src/utils/assert.test.js",
"src/utils/location.js",
"src/utils/location.test.js",
"src/utils/math.js",
"src/utils/math.test.js",
"src/utils/objects.js",
"src/utils/strings.js",
"src/utils/strings.test.js",
"tools/**/*.ts"
],
"compilerOptions": {
"baseUrl": ".",
"allowJs": true,
"checkJs": true,
"target": "ES2021",
"jsx": "react-jsx",
"lib": ["es2019", "dom"],
"module": "es6",
"moduleResolution": "node",
"noEmit": true,
"noImplicitAny": true,
"noImplicitThis": true,
"pretty": false,
"strict": true,
"strictNullChecks": true,
"types": ["jest", "@testing-library/jest-dom"]
}
}