-
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathtsconfig.json
More file actions
28 lines (28 loc) · 593 Bytes
/
Copy pathtsconfig.json
File metadata and controls
28 lines (28 loc) · 593 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
{
"compilerOptions": {
"esModuleInterop": true,
"target": "ESNext",
"module": "ESNext",
"lib": ["ESNext"],
"moduleResolution": "Node",
"removeComments": true,
"strict": true,
"alwaysStrict": true,
"isolatedModules": true,
"noImplicitReturns": true,
"noEmit": true,
"skipLibCheck": true,
"baseUrl": "src",
"allowJs": true
},
"include": [
"src",
"types",
"./jest.config.ts",
"./tsup.config.ts",
"./eslint.config.mjs",
"./folderStructure.mjs",
"./independentModules.mjs",
"./fileComposition.mjs"
]
}