20 lines
364 B
JSON
20 lines
364 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"sourceMap": true,
|
|
"baseUrl": ".",
|
|
"experimentalDecorators": true,
|
|
"declarationDir": "./"
|
|
},
|
|
"include": [
|
|
"src/*"
|
|
],
|
|
"exclude": [
|
|
"**/node_modules/*"
|
|
]
|
|
}
|