1
1
mirror of https://github.com/kokonect-link/cherrypick synced 2024-12-15 15:18:22 +09:00
cherrypick/tsconfig.json
2021-05-14 11:46:39 +09:00

24 lines
457 B
JSON

{
"compilerOptions": {
"target": "es2017",
"module": "commonjs",
"declaration": true,
"outDir": "./built/",
"rootDir": "./src/",
"removeComments": true,
"strict": true,
"strictFunctionTypes": true,
"strictNullChecks": true,
"experimentalDecorators": true,
"noImplicitReturns": true,
"esModuleInterop": true,
},
"include": [
"src/**/*",
],
"exclude": [
"node_modules",
"test/**/*",
]
}