17 lines
295 B
JSON
17 lines
295 B
JSON
{
|
|
"extends": "./tsconfig.json",
|
|
// Visit https://aka.ms/tsconfig to read more about this file
|
|
"compilerOptions": {
|
|
"rootDir": "./src",
|
|
"types": [],
|
|
},
|
|
"exclude": [
|
|
"node_modules",
|
|
"dist",
|
|
"tests"
|
|
],
|
|
"include": [
|
|
"./src/**/*.ts",
|
|
"./src/**/*.tsx"
|
|
]
|
|
}
|