FoundKey/packages/foundkey-js/tsconfig.json

28 lines
548 B
JSON
Raw Permalink Normal View History

2021-05-12 14:29:17 +00:00
{
2021-07-30 04:01:52 +00:00
"$schema": "http://json.schemastore.org/tsconfig",
2021-05-16 09:22:19 +00:00
"compilerOptions": {
2021-05-16 14:42:06 +00:00
"target": "es2020",
"module": "es2020",
2021-05-16 09:22:19 +00:00
"declaration": true,
2021-07-30 04:01:52 +00:00
"declarationMap": true,
"sourceMap": true,
2021-05-16 09:22:19 +00:00
"outDir": "./built/",
"removeComments": true,
"skipLibCheck": true,
2021-05-16 09:22:19 +00:00
"strict": true,
"strictFunctionTypes": true,
"strictNullChecks": true,
"experimentalDecorators": true,
"noImplicitReturns": true,
"esModuleInterop": true,
"moduleResolution": "Node16"
2021-05-16 09:22:19 +00:00
},
"include": [
2021-07-30 04:01:52 +00:00
"src/**/*"
2021-05-16 09:22:19 +00:00
],
"exclude": [
"node_modules",
2021-07-30 04:01:52 +00:00
"test/**/*"
2021-05-16 09:22:19 +00:00
]
2021-05-12 14:29:17 +00:00
}