2022-05-02 09:23:58 -07:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2022-06-10 06:02:03 -07:00
|
|
|
"esModuleInterop": true,
|
|
|
|
"moduleResolution": "node",
|
2022-05-02 09:23:58 -07:00
|
|
|
"lib": ["es2019"],
|
2022-06-10 06:02:03 -07:00
|
|
|
"outDir": "./dist",
|
2022-05-02 09:23:58 -07:00
|
|
|
"resolveJsonModule": true,
|
2022-06-10 06:02:03 -07:00
|
|
|
"noImplicitAny": false,
|
2022-05-02 09:23:58 -07:00
|
|
|
"sourceMap": true,
|
2022-06-10 06:02:03 -07:00
|
|
|
"skipLibCheck": true,
|
|
|
|
"target": "es2019"
|
2022-05-02 09:23:58 -07:00
|
|
|
},
|
2022-07-05 20:38:53 -07:00
|
|
|
"include": ["ts/client/src", "ts/client/scripts", "ts/client/scripts"],
|
|
|
|
"exclude": [
|
|
|
|
"./ts/**/*.test.js",
|
|
|
|
"node_modules",
|
|
|
|
"**/node_modules",
|
|
|
|
"./ts/client/src/scripts"
|
|
|
|
]
|
2022-05-02 09:23:58 -07:00
|
|
|
}
|