This repository has been archived on 2022-10-04. You can view files and clone it, but cannot push or open issues or pull requests.
foundkey.js/tsconfig.json

24 lines
421 B
JSON
Raw Normal View History

2021-05-12 14:29:17 +00:00
{
2021-05-16 09:22:19 +00:00
"compilerOptions": {
2021-05-16 14:42:06 +00:00
"target": "es2020",
2021-05-16 09:22:19 +00:00
"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/**/*",
]
2021-05-12 14:29:17 +00:00
}