You've already forked AstralRinth
forked from didirus/AstralRinth
Migrate to Turborepo (#1251)
This commit is contained in:
18
packages/tsconfig/base.json
Normal file
18
packages/tsconfig/base.json
Normal file
@@ -0,0 +1,18 @@
|
||||
{
|
||||
"$schema": "https://json.schemastore.org/tsconfig",
|
||||
"display": "Default",
|
||||
"compilerOptions": {
|
||||
"composite": false,
|
||||
"esModuleInterop": true,
|
||||
"forceConsistentCasingInFileNames": true,
|
||||
"inlineSources": false,
|
||||
"isolatedModules": true,
|
||||
"noUnusedLocals": false,
|
||||
"noUnusedParameters": false,
|
||||
"preserveWatchOutput": true,
|
||||
"skipLibCheck": true,
|
||||
"strict": true,
|
||||
"strictNullChecks": true
|
||||
},
|
||||
"exclude": ["node_modules"]
|
||||
}
|
||||
5
packages/tsconfig/nuxt.json
Normal file
5
packages/tsconfig/nuxt.json
Normal file
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"$schema": "https://json.schemastore.org/tsconfig",
|
||||
"display": "Nuxt",
|
||||
"extends": ["./base.json"]
|
||||
}
|
||||
12
packages/tsconfig/package.json
Normal file
12
packages/tsconfig/package.json
Normal file
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"name": "tsconfig",
|
||||
"version": "0.0.0",
|
||||
"private": true,
|
||||
"license": "MIT",
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@vue/tsconfig": "^0.5.1"
|
||||
}
|
||||
}
|
||||
5
packages/tsconfig/vue.json
Normal file
5
packages/tsconfig/vue.json
Normal file
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"$schema": "https://json.schemastore.org/tsconfig",
|
||||
"display": "Vue",
|
||||
"extends": ["./base.json", "@vue/tsconfig/tsconfig.dom.json"]
|
||||
}
|
||||
Reference in New Issue
Block a user