generated from rosnovsky/create-project
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
34 lines (34 loc) · 864 Bytes
/
tsconfig.json
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
{
"compilerOptions": {
"outDir": "./dist",
"rootDir": "./src",
"types": ["node"],
"lib": ["ESNext", "DOM"],
"noEmit": false,
"sourceMap": true,
"declaration": true,
"removeComments": true,
"noImplicitAny": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"target": "ESNext",
"module": "nodenext",
"moduleResolution": "nodenext",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true,
"jsx": "react",
"allowJs": true
},
"ts-node": {
"esm": true,
"experimentalSpecifierResolution": "node",
"transpileOnly": true
},
"include": ["src/utils/*.ts", "src/components/*.tsx", "src/*.ts"],
"exclude": ["node_modules", "**/*.test.ts", "dist", "src/content/config.ts"],
"paths": {
"@/*": ["src/*"]
}
}