2021-05-24 10:25:02 +00:00
|
|
|
{
|
2021-09-20 20:53:49 +00:00
|
|
|
"compilerOptions": {
|
2022-03-02 20:11:50 +00:00
|
|
|
"rootDir": "./",
|
2022-03-02 20:33:10 +00:00
|
|
|
"outDir": "./lib",
|
2022-03-02 20:11:50 +00:00
|
|
|
"target": "ES2019",
|
|
|
|
"module": "ESNext",
|
|
|
|
"lib": [
|
|
|
|
"ESNext",
|
|
|
|
"DOM"
|
|
|
|
],
|
|
|
|
"strict": true,
|
2022-03-03 21:30:16 +00:00
|
|
|
"skipLibCheck": true,
|
2022-03-02 20:11:50 +00:00
|
|
|
"moduleResolution": "node",
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"importsNotUsedAsValues": "error"
|
|
|
|
},
|
2022-03-03 21:30:16 +00:00
|
|
|
"include": ["src/**/*.ts"]
|
2021-05-24 10:25:02 +00:00
|
|
|
}
|