-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
26 lines (26 loc) · 1.04 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
{
"compilerOptions": {
"incremental": true, // 啟用增量編譯
"target": "ESNext", // 編譯成指定的 JavaScript 版本
"module": "commonjs", // 指定編譯成何種模組
"declaration": true, // 不產生 '.d.ts' 檔
"sourceMap": false, // 不產生 '.map' 檔
"outDir": "./dist", // 指定編譯後的檔案存放點
"rootDir": "./src", // 載入點的位置
"removeComments": true, // 移除註解
"strict": true, // 採用嚴格模式
"baseUrl": "./src", // 指定匯入檔案的基準路徑
"esModuleInterop": true, // 兼容模組
"experimentalDecorators": true, // 啟用裝飾器
"emitDecoratorMetadata": true // 提供裝飾器 metadata
},
// 納入編譯範圍
"include": [
"src/**/*.ts"
, "src/migrations/20230209_add_user_phone.ts_phosrc/migrations/20230209_add_user_phone.ts_add_user_phone.ts", "src/migrations/20230209_add_user_email.ts_emasrc/migrations/20230209_add_user_email.ts_add_user_email.ts" ],
//不納入編譯範圍
"exclude": [
"node_modules",
"dist"
]
}