* fix(cli): shouldn't load tsconfig when typescript disabled * feat(cli): support remove type when non-typescript * feat: patch `detype` and fix ts extension * test: update * chore: update lock * feat: patch again * fix: missing * chore: update lock * feat: support root option * chore: update lock * feat: transform utils to js by detype * refactor: load jsconfig and remove root option * chore: remove babel/core
15 lines
298 B
JSON
15 lines
298 B
JSON
{
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
"extends": "../../tsconfig.json",
|
|
"compilerOptions": {
|
|
"isolatedModules": false,
|
|
"baseUrl": ".",
|
|
"module": "ES2020",
|
|
"paths": {
|
|
"@/*": ["./*"]
|
|
}
|
|
},
|
|
"include": ["src/**/*.ts"],
|
|
"exclude": ["node_modules"]
|
|
}
|