2020-09-24 06:33:04 +00:00
|
|
|
{
|
2020-09-24 12:23:44 +00:00
|
|
|
"compilerOptions": {
|
|
|
|
"target": "ES2020",
|
|
|
|
"module": "commonjs",
|
|
|
|
"declaration": true,
|
|
|
|
"outDir": "./dist",
|
|
|
|
"strict": true,
|
|
|
|
"noImplicitAny": false,
|
|
|
|
"baseUrl": "./",
|
|
|
|
"paths": {
|
|
|
|
"@app/*": [
|
|
|
|
"src/*"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"forceConsistentCasingInFileNames": true
|
2020-09-24 06:33:04 +00:00
|
|
|
},
|
2020-09-24 12:23:44 +00:00
|
|
|
"include": [
|
2020-09-25 07:42:56 +00:00
|
|
|
"src/*"
|
2020-09-24 12:23:44 +00:00
|
|
|
],
|
|
|
|
"exclude": [
|
|
|
|
"node_modules",
|
|
|
|
"dist"
|
|
|
|
]
|
2020-09-24 06:33:04 +00:00
|
|
|
}
|