31 lines
514 B
JSON
31 lines
514 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES6",
|
|
"module": "ESNext",
|
|
"outDir": "./dist",
|
|
"rootDirs": [
|
|
"./src",
|
|
"./dist"
|
|
],
|
|
"rootDir": "./src",
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"moduleResolution": "node",
|
|
"paths": {
|
|
"*": [
|
|
"./src/*",
|
|
"./node_modules/*"
|
|
]
|
|
},
|
|
"baseUrl": "."
|
|
},
|
|
"include": [
|
|
"src/**/*"
|
|
],
|
|
"exclude": [
|
|
"node_modules"
|
|
]
|
|
}
|