mirror of
				https://github.com/zadam/trilium.git
				synced 2025-11-04 09:05:37 +08:00 
			
		
		
		
	this will allow for cleaner separation -> build for the output from the build stage (i.e. TS/Webpack + asset copying) and dist for the archive format of the build folder
		
			
				
	
	
		
			20 lines
		
	
	
	
		
			570 B
		
	
	
	
		
			JSON
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
	
		
			570 B
		
	
	
	
		
			JSON
		
	
	
	
	
	
{
 | 
						|
  "compilerOptions": {
 | 
						|
    "module": "NodeNext",
 | 
						|
    "declaration": false,
 | 
						|
    "sourceMap": true,
 | 
						|
    "outDir": "./build",
 | 
						|
    "strict": true,
 | 
						|
    "noImplicitAny": true,
 | 
						|
    "resolveJsonModule": true,
 | 
						|
    "allowJs": true,
 | 
						|
    "lib": ["ES2023"],
 | 
						|
    "downlevelIteration": true,
 | 
						|
    "skipLibCheck": true,
 | 
						|
    "esModuleInterop": true,
 | 
						|
    "verbatimModuleSyntax": true
 | 
						|
  },
 | 
						|
  "include": ["./src/**/*.js", "./src/**/*.ts", "./*.ts", "./spec/**/*.ts"],
 | 
						|
  "exclude": ["./node_modules/**/*", "./spec-es6/**/*.ts"],
 | 
						|
  "files": ["src/types.d.ts", "src/public/app/types.d.ts"]
 | 
						|
}
 |