-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
26 lines (26 loc) · 901 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
{
"extends": "@tsconfig/next/tsconfig.json",
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"baseUrl": "./src",
"downlevelIteration": true,
"noFallthroughCasesInSwitch": true,
"noImplicitAny": true,
"paths": {
"@app/*": ["app/*"],
"@assets/*": ["assets/*"],
"@components/*": ["components/*"],
"@context/*": ["context/*"],
"@data/*": ["../public/data/*"],
"@hooks/*": ["hooks/*"],
"@public/*": ["../public/*"],
"@services/*": ["services/*"],
"@utils/*": ["utils/*"]
},
"strictNullChecks": true,
"target": "ES6",
"typeRoots": ["./node_modules/@types", "src/@types"]
},
"include": ["next-env.d.ts", "src/**/*.ts", "src/**/*.tsx", ".next/types/**/*.ts"],
"exclude": ["node_modules"]
}