forked from FoundKeyGang/FoundKey
22 lines
391 B
JSON
22 lines
391 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"target": "es2017",
|
||
|
"module": "commonjs",
|
||
|
"declaration": true,
|
||
|
"outDir": "./built/",
|
||
|
"rootDir": "./src/",
|
||
|
"removeComments": true,
|
||
|
"strict": true,
|
||
|
"strictFunctionTypes": true,
|
||
|
"noImplicitReturns": true,
|
||
|
"esModuleInterop": true,
|
||
|
},
|
||
|
"include": [
|
||
|
"src/**/*",
|
||
|
],
|
||
|
"exclude": [
|
||
|
"node_modules",
|
||
|
"test/**/*",
|
||
|
]
|
||
|
}
|