-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
22 lines (22 loc) · 1.36 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
{
"compilerOptions": {
"outDir": "dist", // DEFINE AONDE FICARA O BUILD
"rootDirs": ["src", "tests"], // DEFINE O DIRETÓRIO RAIZ
"target": "es2021", // DEFINE EM CIMA DE QUAL VERSÃO DO JAVASCRIPT O BUILD SERÁ FEITO
"sourceMap": true, // UTILIZADO PARA DEBUG (BREAKPOINT)
"skipLibCheck": true, // PERFORMANCE
"forceConsistentCasingInFileNames": true, // FORÇA UMA PADRONIZAÇÃO NOS PATH DE IMPORTAÇÃO
"module": "CommonJS", // HABILITA O REQUIRE E ETC
"moduleResolution": "Node", // HABILITA A IMPORTAÇÃO DE UMA PASTA QUE TEM VÁRIOS EXPORT * FROM './'
"esModuleInterop": true, // PADRONIZA AS LIBIS EXEMPLO: UMAS USA REQUIRE E OUTRA IMPORT
"baseUrl": "src", // DEFINE A PASTA RAIZ UTILIZADA PELO PATH "@"
"paths": {
"@/*": ["*"],
"@/tests/*": ["../tests/*"]
},
"strict": true, // HABILITA VÁRIAS OUTRAS PROPRIEDADES AO MESMO TEMPO (SUPER RECOMENDADO HABILITAR)
"emitDecoratorMetadata": true, //UTILIZADO PELO TYPEORM
"experimentalDecorators": true, //UTILIZADO PELO TYPEORM
},
"include": ["src", "tests"] // INCLUI TODOS OS ARQUIVOS DA PASTA SRC DENTRO DA DIST (BUILD)
}