-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtsconfig.json
More file actions
19 lines (18 loc) Β· 1.04 KB
/
tsconfig.json
File metadata and controls
19 lines (18 loc) Β· 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
"compilerOptions": {
"module": "commonjs", // λͺ¨λμ μν μ½λ μμ± μ€μ (none, commonjs, amd, system)
"target": "es2017", // μ¬μ©ν ECMAScript λ²μ μ€μ
"outDir": "dist", // κ²°κ³Ό ꡬ쑰 보λ΄λ λλ ν°λ¦¬
"noImplicitAny": true, // any νμ
μΌλ‘ ꡬνλ ννμ νΉμ μ μ μλ¬μ²λ¦¬
"strictPropertyInitialization": false, // ν΄λμ€ κ° μ΄κΈ°νμ μ격ν νμΈ μ¬λΆ
"moduleResolution": "node", // λͺ¨λ ν΄μ λ°©λ²
"sourceMap": true, // .map νμΌ μμ± μ¬λΆ
//"baseUrl": "./src", // non-absoluteν λͺ¨λμ΄λ¦μ μ²λ¦¬ν κΈ°μ€ λλ ν°λ¦¬
"experimentalDecorators": true, // ES7μ λ°μ½λ μ΄ν°μ λνμ€νμ μ§μ μ¬λΆ
"emitDecoratorMetadata": true, // λ°μ½λ μ΄ν°λ₯Ό μν νμ
λ©νλ°μ΄ν°λ₯Ό λ΄λ³΄λ΄λ κ²μ λν μ€νμ μ§μ μ¬λΆ
"typeRoots": ["./node_modules/@types"]
//"strictNullChecks": true
},
"include": ["./src/**/*", "./handler.ts"],
"exclude": ["src/**/*.spec.ts", "src/**/*.test.ts", "node_modules"]
}