19 lines
363 B
JSON
19 lines
363 B
JSON
{
|
|
"extends": "../../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"composite": true,
|
|
"jsx": "react-jsx",
|
|
"jsxImportSource": "react",
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler"
|
|
},
|
|
"include": [
|
|
"./*.ts",
|
|
"./*.tsx",
|
|
"./templates/**/*.ts",
|
|
"./templates/**/*.tsx"
|
|
],
|
|
"exclude": ["node_modules"]
|
|
}
|