mirror of
https://github.com/run-llama/create-llama.git
synced 2026-07-19 15:03:35 -04:00
25 lines
517 B
JSON
25 lines
517 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2019",
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"strict": true,
|
|
"resolveJsonModule": true,
|
|
"skipLibCheck": true,
|
|
"declaration": false,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"incremental": true,
|
|
"outDir": "./lib",
|
|
"tsBuildInfoFile": "./lib/.tsbuildinfo"
|
|
},
|
|
"include": [
|
|
"create-app.ts",
|
|
"index.ts",
|
|
"./helpers",
|
|
"questions.ts",
|
|
"package.json"
|
|
],
|
|
"exclude": ["dist"]
|
|
}
|