-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
43 lines (43 loc) · 1.14 KB
/
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
35
36
37
38
39
40
41
42
43
{
"compilerOptions": {
"target": "ES2021",
"moduleResolution": "node",
"module": "commonjs",
"lib": ["ES2021"], ///inclui por default os tipos do es2021
"sourceMap": true, // quando compilar ele vai botar um mapa assim ajuda no debug
"outDir": "dist", //onde o diretório será compilado
"strict": true, //sempre pra ter sctric mode
"noImplicitAny": true, //nao deixar nada implicito
"strictNullChecks": true, // aqui tbm, nao deixa uma const ou let sem tipo
"strictFunctionTypes": true, // idem
"noImplicitThis": true, // ?????
"resolveJsonModule":true,
"alwaysStrict": true,
"removeComments": true,
"noImplicitReturns": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"baseUrl": ".",
"paths": {
"@src/*": ["./src/*"],
"@test/*": ["./test/*"]
},
"rootDirs": [
"./src",
"./test"
],
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"typeRoots": [
"./node_modules/@types"
]
},
"include": [
"./src/**/*.ts",
"./test/**/*.ts"
],
"exclude": [
"./node_modules/*",
"dist"
]
}