B2B-88: add starter kit structure and elements
This commit is contained in:
@@ -1,28 +1,30 @@
|
||||
{
|
||||
"extends": "@kit/tsconfig/base.json",
|
||||
"compilerOptions": {
|
||||
"target": "es5",
|
||||
"lib": ["dom", "dom.iterable", "esnext"],
|
||||
"allowJs": true,
|
||||
"skipLibCheck": true,
|
||||
"strict": true,
|
||||
"forceConsistentCasingInFileNames": true,
|
||||
"noEmit": true,
|
||||
"esModuleInterop": true,
|
||||
"module": "esnext",
|
||||
"moduleResolution": "node",
|
||||
"resolveJsonModule": true,
|
||||
"isolatedModules": true,
|
||||
"jsx": "preserve",
|
||||
"incremental": true,
|
||||
"baseUrl": ".",
|
||||
"paths": {
|
||||
"@/*":["./*"],
|
||||
"~/*": ["./app/*"],
|
||||
"~/config/*": ["./config/*"],
|
||||
"~/components/*": ["./components/*"],
|
||||
"~/lib/*": ["./lib/*"]
|
||||
},
|
||||
"plugins": [
|
||||
{
|
||||
"name": "next"
|
||||
}
|
||||
],
|
||||
"paths": {
|
||||
"@/*": ["./*"]
|
||||
}
|
||||
"tsBuildInfoFile": "node_modules/.cache/tsbuildinfo.json"
|
||||
},
|
||||
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
|
||||
"exclude": ["node_modules"]
|
||||
"include": [
|
||||
"next-env.d.ts",
|
||||
".next/types/**/*.ts",
|
||||
"*.ts",
|
||||
"*.tsx",
|
||||
"./config/**/*.ts",
|
||||
"components/**/*",
|
||||
"lib/**/*.ts",
|
||||
"app"
|
||||
],
|
||||
"exclude": ["node_modules", ".next"]
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user